Skip to main content

Get Check API Status

This endpoint retrieves the status of a service. It is useful for checking whether the service or application is operational.

Configure the API Endpoint

https://api.betatel.com/api/v1/connect-hub/status
  • Method: GET

Set Up the Headers

ParamValueDescription
Content-typeapplication/jsonSpecifies the payload format.

Example Response

Status Code: 200 OK
Content-Type: application/json

Example Response
{
"status": "Running",
"version": "2.1.0",
"uptime": "2d 0h 0m 5s"
}
FieldTypeDescription
statusstringThe current status of the app
versionstringThe version of the app
uptimestringThe uptime of the app

Code Snippets

Example - cURL
curl --location 'https://api.betatel.com/api/v1/connect-hub/status' \
--header 'Content-Type: application/json'